home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus Special 16
/
AMIGAplus Sonderheft 16 (1998)(ICP)(DE)[!].iso
/
pd
/
anwendungen
/
ispell-3.1.18src
/
addons
/
xspell.shar
/
buffer.h
< prev
next >
Wrap
C/C++ Source or Header
|
1995-01-23
|
391b
|
24 lines
/*
* This is the structure of a file that is being spell-checked.
*
* Basically, all associated state is found here.
*/
typedef struct {
char * base;
char * ptr;
long offset;
int cnt;
int delta;
int lineno;
int topline;
int wordlen;
long size;
char *filename;
char *tempname;
/* booleans */
char changed;
char readonly
} buf_t;